home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 118 / cd-rom 118.iso / aplic / open / openofficeorg4.cab / xmltests.py < prev    next >
Encoding:
Python Source  |  2005-02-15  |  433 b   |  20 lines

  1. # Convenience test module to run all of the XML-related tests in the
  2. # standard library.
  3.  
  4. import sys
  5. import test.test_support
  6.  
  7. test.test_support.verbose = 0
  8.  
  9. def runtest(name):
  10.     __import__(name)
  11.     module = sys.modules[name]
  12.     if hasattr(module, "test_main"):
  13.         module.test_main()
  14.  
  15. runtest("test.test_minidom")
  16. runtest("test.test_pyexpat")
  17. runtest("test.test_sax")
  18. runtest("test.test_xmllib")
  19. runtest("test.test_xmlrpc")
  20.